User Template Creation Endpoint
Overview
This endpoint allows users to create a new template within a specific collection.
Request Details
HTTP Method
POST
Route
/api/users/[user_id]/collections/[collection_id]/templates
Route Parameters
Parameter | Type | Required | Description |
---|---|---|---|
user_id | integer | Yes | The ID of the authenticated user |
collection_id | integer | Yes | The ID of the template collection |
Headers
Header | Value | Required | Description |
---|---|---|---|
Accept | application/json | Yes | Specifies the response format |
Content-Type | application/json | Yes | Request body format |
Cookie | neptun-session | Yes | Session authentication cookie |
Query Parameters
No query parameters required.
Request Body
Field | Type | Required | Description |
---|---|---|---|
template.description | string | No | Description of the template |
template.file_name | string | Yes | Name of the template file |
file | string | Yes | Content of the template file |
Response Format
Response Status Codes
Status Code | Description |
---|---|
201 | Successfully created template |
400 | Bad Request (invalid request body) |
401 | Unauthorized (invalid or missing session) |
403 | Forbidden (user_id mismatch) |
404 | Collection not found |
500 | Server error |
Success Response (201 Created)
{
"template": {
"id": 1,
"description": "Basic Docker deployment script",
"file_name": "docker-deploy.sh",
"created_at": "2024-01-01T12:00:00Z",
"updated_at": "2024-01-01T12:00:00Z",
"neptun_user_id": 1,
"template_collection_id": 1,
"user_file_id": 1
}
}